BrainFuck Interpreter v1.0 ION
------------------------------
2003 Erik Bergstrm 
arne3kl2@hotmail.com


BrainFuck is a programing language with only 8 commands.
If you want to learn how to make bf programs check this site:

http://www.muppetlabs.com/~breadbox/bf/

Controls:
---------
Clear - Always quits the program! Use this to return to ion
Right - Show next program to load
2nd   - Load&Run program 

+/-   - Scroll through the ascii table (look at the top-left corner ;)
Enter

ascii 13 is enter/newline 

The program doesn't crash if you run a program without bf code :)

How to make a brainfuck program:
--------------------------------
Make a new basic program and type in your program

End with the End token (prgm + 7)

You may type comments on any line :) 

Example:

:ASCII Table
:+[.+]
:End

Look in the bfsource map for more programs :)

History
-------
1.0 First public releas


